-
Notifications
You must be signed in to change notification settings - Fork 551
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[TracyProfiler] Update to v0.10 #8437
base: master
Are you sure you want to change the base?
Conversation
97446c4
to
b9825d1
Compare
b9825d1
to
757a86c
Compare
Thanks to @giordano for publishing this pre-release. I tested it and tracy loads, but complains that julia needs to be built against a compatible lib version |
Yeah, unfortunately Tracy is not backwards-compatible so this will need a coordinated bump of LibTracyClient_jll |
Oh, I see TracyProfiler and LibTracyClient technically don't depend on each other, so we can't set compat bounds to avoid these issues. That's annoying. |
Yeah we don't want to make TracyProfiler depend on LibTracyClient since that would cause the client to auto-load. We could potentially use a dummy package TracyProtocol that they both depend on? |
How about the opposite: a simple Julia package which loads both of them, and can set compat bounds. End users would use that one directly, instead of the jlls. |
That would continue to have the problem of loading the client in a process where you only want to run the GUI application though, which is very confusing for users because it means an extra |
I might be missing something, but you can depend on a package and set compat for it, but not load it. Wouldn't that work? |
In JLLs we don't have "depend on but not load" dependencies, not at the moment. |
I've been trying to use the current TracyProfiler_jll on MacOS and it is basically unusable because of the hypersensitive zoom and lack of scrolling via mouse and no scrollbars. It'd be good to get this in and julia updated. |
Are those issues fixes in 0.10? |
I've tried to figure that out from Tracy and CImGUI PRs but haven't managed. Do you know if I can load this jll with some dummy profile data? |
I posted here wolfpld/tracy#631 (comment) |
You can use the sample file used for Tracy's web demo: https://tracy.nereid.pl/Tracy-release.data Despite the file extension, it's really a |
v0.10 released Oct 16, 2023 https://github.com/wolfpld/tracy/releases/tag/v0.10
@topolarity @KristofferC this look good to you?